home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 16
/
AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso
/
pd
/
anwendungen
/
amicad
/
arexx_english
/
new.amicad
< prev
next >
Wrap
Text File
|
1998-03-03
|
404b
|
23 lines
/* This file gives you an example for the recommended structure
for a script file called by AmiCAD */
options results
signal on error /* for error handling */
signal on syntax
/* Your program must be placed there */
exit
/* Handling errors */
syntax:
erreur=RC
'MESSAGE("Syntax error"+CHR(10)+"in line 'SIGL'"+CHR(10)+"'errortext(erreur)'")'
exit
error:
'MESSAGE("Error in line 'SIGL'")'
exit